ocr: Step 1: Initial assignment cstri =a "Hollo world"i CString gau a30 Hello woridid. CString alocates spaco for "Hollo worid" and fills CStringData with length and ref: count E 1. Step 2: Copy cstr2 a cstri; CString - patra 1330 Rello worldions CString cStr2 cstr2 points to same olject. as cstri. No allocation required, Just ncrement the ref count Step 3: Wodify estr2: = "Goodbye"; CString ISR Helto woridio. CString catr2 SU Goodbyelo.. When cstr2 Is modifed, a new memory object is allocated and the data copled from cstri to cstr2 before the modification is made. Ref count for cstri Is docremente ...